コード例 #1
0
        public static UserShortModel From(int?id, string username, string avatar)
        {
            UserShortModel u = new UserShortModel();

            u.Id       = id;
            u.Username = username;
            u.Avatar   = avatar;
            return(u);
        }
コード例 #2
0
        public static UserShortModel From(UserModel model)
        {
            UserShortModel u = new UserShortModel();

            u.Id       = model.Id;
            u.Username = model.Username;
            u.Avatar   = model.Avatar;
            return(u);
        }