10 lines
211 B
C#
10 lines
211 B
C#
using System.Collections.Generic;
|
|
|
|
namespace CompanyManagment.App.Contracts.FileState;
|
|
|
|
public class EditFileState : CreateFileState
|
|
{
|
|
public long Id { get; set; }
|
|
public int Deadline { get; set; }
|
|
|
|
} |