MyBookmark/Modules.Library.Domain/Entities/MediaContent/CommonProperties/GenreProportionItem.cs
2024-09-04 23:08:56 +03:00

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;
}
}