mirror of
https://gitlab.com/fabinfra/fabaccess/borepin.git
synced 2025-03-14 07:41:53 +01:00
15 lines
293 B
C#
15 lines
293 B
C#
namespace Borepin.Model
|
|
{
|
|
public class KeyScan
|
|
{
|
|
public KeyScan(CardConfig cardConfig, KeyTypes keyType)
|
|
{
|
|
CardConfig = cardConfig;
|
|
KeyType = keyType;
|
|
}
|
|
|
|
public CardConfig CardConfig;
|
|
public KeyTypes KeyType;
|
|
}
|
|
}
|