blob: 4aed204ce55e28b491dd2dcf3c5f910fbfe6b62e [file] [log] [blame]
// ------------------------------------------------------------------------------
// <auto-generated>
// Generated by avrogen.exe, version 0.9.0.0
// Changes to this file may cause incorrect behavior and will be lost if code
// is regenerated
// </auto-generated>
// ------------------------------------------------------------------------------
namespace com.foo
{
using System;
using System.Collections.Generic;
using System.Text;
using Avro;
using Avro.Specific;
public partial class MyFixed : SpecificFixed
{
public static Schema _SCHEMA = Avro.Schema.Parse("{\"type\":\"fixed\",\"name\":\"MyFixed\",\"namespace\":\"com.foo\",\"size\":16}");
private static uint fixedSize = 16;
public MyFixed() :
base(fixedSize)
{
}
public override Schema Schema
{
get
{
return MyFixed._SCHEMA;
}
}
public static uint FixedSize
{
get
{
return MyFixed.fixedSize;
}
}
}
}