1234567891011121314151617181920212223242526272829303132 |
- using System;
- using System.Collections.Generic;
- using System.Collections.ObjectModel;
- using Mpeg4ConverterTool.Document;
- namespace Mpeg4ConverterTool
- {
- internal class UserGroup:TrackableEntity
- {
- public string Name { get; set; }
- public string Description { get; set; }
- public ICollection<UserInfo> Users { get; private set; }
- public AdminInfo CreateAdmin { get; set; }
- public virtual ICollection<AdminInfo> Owners { get; private set; }
- public UserGroup():base()
- {
- Users = new Collection<UserInfo>();
- Owners = new Collection<AdminInfo>();
- }
- public UserGroup(string id, DateTime createTime) : base(id, createTime)
- {
- Users = new Collection<UserInfo>();
- Owners = new Collection<AdminInfo>();
- }
- }
- }
|