Projekt

Obecné

Profil

Stáhnout (347 Bajtů) Statistiky
| Větev: | Tag: | Revize:
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
}
(2-2/7)