10 lines
237 B
C#
10 lines
237 B
C#
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace Modules.Library.Application.Models;
|
|
|
|
public class GenreProportion
|
|
{
|
|
public decimal? Proportion { get; set; }
|
|
[Required]
|
|
public Genre Genre { get; set; } = default!;
|
|
} |