SystemLogSource.cs 325 B

12345678910111213141516
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Threading.Tasks;
  5. namespace MSHO.Collection.Service
  6. {
  7. public class SystemLogSource
  8. {
  9. public const string MSHO_Collection_Service = "MSHO.Collection.Service";
  10. public int Status {
  11. get;set;
  12. }
  13. }
  14. }