You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
308 B

2 years ago
  1. namespace WebApp.Models.Hub
  2. {
  3. public class EditPrgInfo
  4. {
  5. /// <summary>
  6. /// 當前功能代號
  7. /// </summary>
  8. public string FnId { get; set; }
  9. /// <summary>
  10. /// 當前資料id
  11. /// </summary>
  12. public string DataId { get; set; }
  13. }
  14. }