summaryrefslogtreecommitdiff
path: root/Models/Figure.cs
blob: 7ac5b5f8b3094f48ddff48a11767eb3a93189e17 (plain)
1
2
3
4
5
6
7
8
namespace MyDarling.Models
{
    public class Figure
    {
        public int Id { get; set; }
        public string FilePath { get; set; } = string.Empty;
    }
}