Files
DP44/Common/DTS.Common/.svn/pristine/41/413d330285b3cd19410d4cdd075415ad44a9b545.svn-base

18 lines
491 B
Plaintext
Raw Normal View History

2026-04-17 14:55:32 -04:00
using System;
namespace DTS.Common.Interface.GroupTemplate
{
public interface IGroupTemplate
{
bool Disabled { get; set; }
string Name { get; set; }
string Description { get; set; }
string Channels { get; set; }
string AssociatedGroups { get; set; }
string LastModifiedBy { get; set; }
DateTime LastModified { get; set; }
string SerialNumber { get; set; }
bool Filter(string term);
}
}