6 lines
92 B
C#
Raw Normal View History

namespace System.Web.Mvc {
public enum FormMethod {
Get,
Post
}
}