aswi2022bug-thugs-gitlab/ld_client/LDClient/detection/IInfoFetcher.cs @ 9657d7e0
1 | 0932a9e2 | Pultak | using System; |
---|---|---|---|
2 | using System.Collections.Generic; |
||
3 | using System.Linq; |
||
4 | using System.Text; |
||
5 | using System.Threading.Tasks; |
||
6 | |||
7 | namespace LDClient.detection { |
||
8 | public interface IInfoFetcher { |
||
9 | |||
10 | public string HeadSerialNumber { get; set; } |
||
11 | public string BodySerialNumber { get; set; } |
||
12 | |||
13 | public Task<bool> FetchDataAsync(); |
||
14 | }
|
||
15 | }
|