Files
test_demo/MX-PD-盘古 - new/PanGu.DieBonderApp/MainShell/Filewritable/FileWriteBase.cs

26 lines
607 B
C#
Raw Normal View History

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading;
using System.Threading.Tasks;
namespace MXJM.FileWritable
{
public abstract class FileWriteBase : IFileWritable
{
public string Description { get;protected set; }
public object UserData { get; set ; }
public virtual void Save()
{
throw new NotImplementedException();
}
public virtual Task SaveAsync(CancellationToken cancellationToken = default)
{
throw new NotImplementedException();
}
}
}