2023-01-31 15:55:44 +03:00
|
|
|
namespace MyDarling.Models
|
|
|
|
{
|
2023-02-21 07:52:11 +03:00
|
|
|
public class Figure
|
|
|
|
{
|
|
|
|
public int Id { get; set; }
|
|
|
|
public string Description { get; set; } = string.Empty;
|
|
|
|
public string FilePath { get; set; } = string.Empty;
|
|
|
|
}
|
2023-01-31 15:55:44 +03:00
|
|
|
}
|