IDS camera added
This commit is contained in:
15
framework/Inspectron.Settings/Attributes/FileAttribute.cs
Normal file
15
framework/Inspectron.Settings/Attributes/FileAttribute.cs
Normal file
@@ -0,0 +1,15 @@
|
||||
using System;
|
||||
|
||||
namespace Inspectron.Settings.Attributes
|
||||
{
|
||||
[AttributeUsage(AttributeTargets.Property)]
|
||||
public class FileAttribute:Attribute
|
||||
{
|
||||
public string Filter { get; }
|
||||
|
||||
public FileAttribute(string filter)
|
||||
{
|
||||
Filter = filter;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user