using System; namespace Agent.Models { class FileTable { /// /// 경로 /// public string Path { get; set; } /// /// (파일, 디렉터리) 이름 /// public string Name { get; set; } /// /// (파일, 디렉터리) 고유값 /// public Guid StreamId { get; set; } /// /// 파일 바이너리 /// public byte[] Binary { get; set; } } }