8 lines
187 B
C#
8 lines
187 B
C#
namespace Modules.Library.Domain.Models;
|
|
|
|
public class GenreProportion
|
|
{
|
|
public decimal? Proportion { get; set; }
|
|
[Required]
|
|
public Guid GenreId { get; set; } = default!;
|
|
} |