10 lines
236 B
C#
10 lines
236 B
C#
using System.Collections.Generic;
|
|
|
|
namespace Disco.Models.UI.Config.DeviceBatch
|
|
{
|
|
public interface ConfigDeviceBatchIndexModel : BaseUIModel
|
|
{
|
|
List<ConfigDeviceBatchIndexModelItem> DeviceBatches { get; set; }
|
|
}
|
|
}
|