14 lines
392 B
C#
14 lines
392 B
C#
using InternshipSystem.Core.ValueObject;
|
|
|
|
namespace InternshipSystem.Core
|
|
{
|
|
public class Document
|
|
{
|
|
public long Id { get; set; }
|
|
public string Description { get; set; }
|
|
public byte[] Scan { get; set; }
|
|
public DocumentType Type { get; set; }
|
|
public DocumentState State { get; set; }
|
|
public string RejectionReason { get; set; }
|
|
}
|
|
} |