12 lines
173 B
C#
12 lines
173 B
C#
///
|
|
/// Copyright (c) 2013-2015 Sensus Metering Systems
|
|
///
|
|
namespace Config.Entities
|
|
{
|
|
public interface IHasItemNr
|
|
{
|
|
int Id { get; }
|
|
int ItemNr { get; set; }
|
|
}
|
|
}
|