12345678910111213141516171819202122232425262728 |
- using Mpeg4ConverterTool.Remedical;
- namespace Mpeg4ConverterTool.Document
- {
- [MongoDB.Bson.Serialization.Attributes.BsonIgnoreExtraElements]
- internal class StorageServerInfo
- {
- public string Id { get; set; }
- public string Address { get; set; }
- public int Port { get; set; }
- public string Description { get; set; }
- public StorageServerInfo()
- {
- }
- public StorageServerInfo(StorageServer server)
- {
- Id = server.Id;
- Address = server.Address;
- Port = server.Port;
- Description = server.Description;
- }
- }
- }
|