You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

25 lines
561 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Rs.Motion.Base
{
public class ICardManager
{
/// <summary>
/// 卡是否初始化
/// </summary>
public bool IsInitialized { get; set; }
/// <summary>
/// 同类型的卡,不管有几张卡,统一在这里初始化
/// </summary>
/// <returns></returns>
public virtual ErrorCode Init()
{
return ErrorCode.Ok;
}
}
}