SysSetings.cs 409 B

1234567891011121314151617
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel.DataAnnotations;
  4. using System.ComponentModel.DataAnnotations.Schema;
  5. using System.Linq;
  6. using System.Text;
  7. using System.Threading.Tasks;
  8. namespace XzXdDw.App.Model
  9. {
  10. [Table("SysSetings")]
  11. public class SysSetings : BaseModel
  12. {
  13. public string ServerIp { get; set; }
  14. public int Port { get; set; }
  15. }
  16. }