blob: 426c59d03208671da6482d42a125fd4f250332c8 [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 org.apache.avro.test
{
using System;
using System.Collections.Generic;
using System.Text;
using Avro;
using Avro.Specific;
public partial class FixedTest : SpecificFixed
{
private static Schema _SCHEMA = Avro.Schema.Parse("{\"type\":\"fixed\",\"name\":\"FixedTest\",\"namespace\":\"org.apache.avro.test\",\"size\":10}");
private static uint fixedSize = 10;
public FixedTest() :
base(fixedSize)
{
}
public override Schema Schema
{
get
{
return FixedTest._SCHEMA;
}
}
public static uint FixedSize
{
get
{
return FixedTest.fixedSize;
}
}
}
}