1234567891011121314151617 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace TEAMModelOS.SDK.Module.AzureBlob.Configuration
- {
- public class BlobFileDto
- {
- public string name { get; set; }
- public long length { get; set; }
- public string contentType { get; set; }
- public long created { get; set; }
- public long lastModified { get; set; }
- public string url { get; set; }
- public string BlobType { get; set; }
- }
- }
|