23 lines
445 B
C#
23 lines
445 B
C#
|
using Api.Framework.Tools;
|
|||
|
using SignContacts.Enums;
|
|||
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.ComponentModel;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace SignContacts.Entitys
|
|||
|
{
|
|||
|
public class fl_plugin_signcontacts_sign_info : base_model
|
|||
|
{
|
|||
|
|
|||
|
public SignType signtype { get; set; }
|
|||
|
|
|||
|
public long amount { get; set; }
|
|||
|
|
|||
|
public string sign { get; set; }
|
|||
|
|
|||
|
}
|
|||
|
}
|