16 lines
422 B
C#
16 lines
422 B
C#
namespace Modules.Library.Domain.Entities.MediaContent.CommonProperties;
|
|
|
|
public class GenreProportionItem : Entity
|
|
{
|
|
public decimal? Proportion { get; internal set; }
|
|
[Required]
|
|
public Guid GenreId { get; init; } = default!;
|
|
|
|
private GenreProportionItem() { }
|
|
|
|
internal GenreProportionItem(Guid genreId, decimal? proportion)
|
|
{
|
|
GenreId = genreId;
|
|
Proportion = proportion;
|
|
}
|
|
} |