sharp-application-server/attributes/WebCallable.cs

21 lines
354 B
C#

using System;
namespace appsrv.attributes
{
public enum Serialization {
PLAIN,
JSON,
XML
}
public class WebCallable : Attribute
{
public String Name { get; set; }
public Serialization Serialization { get; set; } = Serialization.PLAIN;
public WebCallable()
{
}
}
}