blob: f63d84283ff1422d3f1ab7f05a95a09efa3ed109 (
plain)
1
2
3
4
5
6
7
8
9
|
namespace MyDarling.Models
{
public class Figure
{
public int Id { get; set; }
public string Description { get; set; } = string.Empty;
public string FilePath { get; set; } = string.Empty;
}
}
|