creating oData client

testing odata interface
This commit is contained in:
2019-03-17 17:32:25 +01:00
parent e52bf0c3a5
commit bbe9f33571
24 changed files with 566 additions and 21 deletions

10
API/Models/File.cs Normal file
View File

@@ -0,0 +1,10 @@
using System;
namespace API.Models {
public class File {
public int ID { get; set; }
public Guid ReferenceFile { get; set; }
public string Name { get; set; }
public FileType FileType { get; set; }
}
}