10 lines
238 B
C#
10 lines
238 B
C#
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace Modules.Library.Application.Models;
|
|
|
|
public class GenreProportion
|
|
{
|
|
public decimal? Proportion { get; set; }
|
|
[Required]
|
|
public Guid GenreId { get; set; } = default!;
|
|
} |