21 lines
558 B
C#
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;
|
|
}
|
|
} |