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

21 lines
558 B
C#

namespace Modules.Library.Domain.EntitiesV0.MediaContent.CommonProperties;
public class GenreProportionItem : Entity
{
public decimal? Proportion { get; private set; }
[Required]
public string GenreId { get; init; } = default!;
internal GenreProportionItem(string genreId) { GenreId = genreId; }
internal GenreProportionItem(string genreId, decimal? proportion)
{
GenreId = genreId;
Proportion = proportion;
}
public void SetProportion(decimal? proportion)
{
Proportion = proportion;
}
}