system-praktyk-api/src/InternshipSystem.Core/Entity/Approval.cs

9 lines
203 B
C#

namespace InternshipSystem.Core
{
public class Approval
{
public long Id { get; set; }
public byte[] Scan { get; set; }
public DocumentState State { get; set; }
}
}