aswi2022bug-thugs-gitlab/ld_client/LDClient/detection/IInfoFetcher.cs @ fa084fc4
1 |
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 |
}
|