MeViewModels.cs 278 B

123456789101112
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel.DataAnnotations;
  4. namespace Winsoft.GOV.XF.WX.Models
  5. {
  6. // MeController 操作返回的模型。
  7. public class GetViewModel
  8. {
  9. public string Hometown { get; set; }
  10. }
  11. }