FabitArchiwum/FabitArchiwum.App/Model/DocumentModel.cs
Krzysztof Famulski 58f5e326e0 Add project files.
2024-11-02 15:32:42 +01:00

24 lines
450 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace FabitArchiwum.App.Model
{
public class DocumentModel
{
public int Id { get; set; }
public int TreeId { get; set; }
public string Name { get; set; }
public byte[] Image { get; set; }
public override string ToString()
{
return Name;
}
}
}