24 lines
450 B
C#
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;
|
|
}
|
|
}
|
|
}
|