SimpleSysConfigModel.cs 283 B

1234567891011121314
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace CZFW.MDB.Model
  5. {
  6. public class SimpleSysConfigModel
  7. {
  8. public string ProjectName { get; set; }
  9. public string SiteUrl { get; set; }
  10. public string Logo { get; set; }
  11. }
  12. }